Pode ser o seu sistema de save. Vá em data/globalevents/scripts/save.lua, apague tudo que está lá e coloque isso:
local config = {
broadcast = {120, 30},
shallow = "no",
delay = 120,
events = 30
}
config.shallow = getBooleanFromString(config.shallow)
local function executeSave(seconds)
if(isInArray(config.broadcast, seconds)) then
local text = ""
if(not config.shallow) then
text = "DarkWorld Server s"
else
text = "S"
end
text = text .. "erver será salvo em " .. seconds .. " segundos, porfavor, tome cuidado."
doBroadcastMessage(text)
end
if(seconds > 0) then
addEvent(executeSave, config.events * 1000, seconds - config.events)
else
doSaveServer(config.shallow)
end
end
function onThink(interval, lastExecution, thinkInterval)
if(table.maxn(config.broadcast) == 0) then
doSaveServer(config.shallow)
else
executeSave(config.delay)
end
return true
end







info
Grupo: Artesão
Registrado: 18/03/13
Posts: 149
Reputação: +19
Gênero: Masculino
Char no Tibia: Cachero
Galera meu otserve as vezes cai e fala que ta em manutenção e depois de 10 min ele volta e alguns players perdem algumas coisas como lvl itens etc...oq pode ser?